/* Blog specific styles */
.blog-main {
    padding: 3rem 0;
}

.blog-hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #e3e9ff 100%);
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.featured-articles {
    margin-bottom: 4rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content {
    padding: 2rem;
}

.card-category {
    display: inline-block;
    background: #e3e9ff;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-content h3 a {
    color: var(--dark-color);
    text-decoration: none;
}

.card-content h3 a:hover {
    color: var(--primary-color);
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.read-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.article-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-category {
    display: inline-block;
    background: #f0f4ff;
    color: var(--primary-color);
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.article-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.article-card h3 a {
    color: var(--dark-color);
    text-decoration: none;
}

.article-card h3 a:hover {
    color: var(--primary-color);
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.85rem;
    color: var(--gray-color);
}

/* Full Article Styles */
.article-main {
    padding: 3rem 0;
}

.full-article {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-details {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
}

.author-role {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.article-featured-image {
    margin: 2rem 0 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.table-of-contents {
    background: #f8fafc;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
}

.table-of-contents h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-of-contents ul {
    list-style: none;
}

.table-of-contents li {
    margin-bottom: 0.75rem;
}

.table-of-contents a {
    color: var(--dark-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-of-contents a:hover {
    color: var(--primary-color);
}

.table-of-contents a:before {
    content: "•";
    color: var(--primary-color);
}

.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f4ff;
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.definition-box {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
}

.formula-box {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin: 2rem 0;
    text-align: center;
    border: 2px solid #e2e8f0;
}

.formula {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1rem 0;
    font-family: 'Courier New', monospace;
}

.calculation-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.calculation-table th {
    background: #f8fafc;
    padding: 1rem;
    font-weight: 600;
    text-align: left;
}

.calculation-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.result-row {
    background: #f0f9ff;
    font-weight: 600;
}

.comparison-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem;
    font-weight: 600;
    text-align: left;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.conversion-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.example-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cgpa-value, .percentage-value {
    font-weight: 600;
    font-size: 1.1rem;
}

.note-box {
    background: #fff8e1;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--warning-color);
    margin: 2rem 0;
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.importance-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.tips-list {
    margin: 2rem 0;
}

.tip-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.tip-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 3rem 0;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.tags {
    margin-bottom: 1.5rem;
}

.tag {
    display: inline-block;
    background: #f0f4ff;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    margin: 0 5px 5px 0;
    font-size: 0.9rem;
    text-decoration: none;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.3s;
}

.share-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.related-articles {
    margin-top: 4rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.related-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    text-decoration: none;
    color: var(--dark-color);
    transition: transform 0.3s;
}

.related-card:hover {
    transform: translateY(-3px);
    color: var(--primary-color);
}

.related-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.related-card p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.read-time {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    text-decoration: none;
    color: var(--dark-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.category-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.category-card span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-card small {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.text-right {
    text-align: right;
}
/* Career Article Specific Styles */
.reality-box {
    background: #f8fafc;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.reality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.reality-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.reality-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.reality-icon.success {
    background: #d1fae5;
    color: #10b981;
}

.reality-icon.warning {
    background: #fef3c7;
    color: #f59e0b;
}

.reality-content ul {
    list-style: none;
    padding-left: 0;
}

.reality-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.reality-content li:last-child {
    border-bottom: none;
}

/* Screening Process */
.screening-process {
    margin: 2rem 0;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Stats Box */
.stat-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Industry Table */
.industry-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.industry-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.industry-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.industry-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.priority {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.priority.high {
    background: #fee2e2;
    color: #dc2626;
}

.priority.medium {
    background: #fef3c7;
    color: #d97706;
}

.priority.low {
    background: #d1fae5;
    color: #059669;
}

/* Compensation Grid */
.compensation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.comp-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.comp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.comp-card ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin-top: 1rem;
}

.comp-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.9rem;
}

.comp-card li:last-child {
    border-bottom: none;
}

/* Action Plan */
.action-plan {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.action-plan ol {
    padding-left: 1.5rem;
}

.action-plan li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

/* Sector Analysis */
.sector-analysis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.sector-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sector-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.importance-meter {
    margin: 1rem 0;
}

.meter-label {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.meter-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

/* Success Stories */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.story-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.story-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.story-cgpa {
    font-weight: 600;
    font-size: 1.1rem;
}

.story-company {
    background: rgba(255,255,255,0.2);
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.story-content {
    padding: 1.5rem;
}

.story-content h5 {
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.story-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.story-tags .tag {
    background: #f0f4ff;
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Advice Box */
.advice-box {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 3rem 0;
    border-top: 4px solid var(--primary-color);
}

.advice-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.advice-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
}

.advice-item h4 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}
/* GPA Conversion Specific Styles */
.scales-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.scale-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border: 2px solid #e2e8f0;
    transition: transform 0.3s;
}

.scale-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.scale-header {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.scale-header h4 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scale-range {
    background: var(--primary-color);
    color: white;
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.scale-details {
    padding: 1.5rem;
}

.scale-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Conversion Methods */
.conversion-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.method-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
}

.method-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 1rem;
}

.method-card .formula {
    font-family: 'Courier New', monospace;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: center;
}

.method-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.method-pros-cons h5 {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.method-pros-cons .pros h5 {
    color: #10b981;
}

.method-pros-cons .cons h5 {
    color: #ef4444;
}

.method-pros-cons ul {
    list-style: none;
    padding-left: 0;
    font-size: 0.85rem;
}

.method-pros-cons li {
    margin-bottom: 0.25rem;
}

/* WES Conversion Table */
.conversion-table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.wes-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.wes-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.wes-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.wes-table .excellent {
    background: #d1fae5;
}

.wes-table .very-good {
    background: #dbeafe;
}

.wes-table .good {
    background: #fef3c7;
}

.wes-table .average {
    background: #fef3c7;
}

.wes-table .below-average {
    background: #fee2e2;
}

.wes-table .pass {
    background: #f3f4f6;
}

.wes-table .fail {
    background: #fee2e2;
}

.wes-notes {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.wes-notes ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.wes-notes li {
    margin-bottom: 0.5rem;
}

/* Country Requirements */
.country-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.country-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    display: flex;
    gap: 1rem;
    border: 1px solid #e2e8f0;
}

.country-flag {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.country-details h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.gpa-requirement {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.requirement-label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.requirement-value {
    font-weight: 600;
    color: var(--primary-color);
}

/* GPA Calculator Widget */
.gpa-calculator-widget {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.calculator-form {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.calculator-results {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    display: none;
}

.result-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.result-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.result-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
}

.result-label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
}

.result-value.highlight {
    font-size: 2rem;
    color: #4ade80;
}

.calculator-note {
    background: #fff8e1;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #92400e;
}

/* University Requirements Table */
.university-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.university-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.university-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.university-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.university-table tr:hover {
    background: #f8fafc;
}

/* Important Tips */
.important-tips {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tip {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    display: flex;
    gap: 1rem;
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tip-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tip-content p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Resources Box */
.resources-box {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 2rem 0;
}

.resources-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s;
}

.resource-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.resource-link i {
    color: var(--primary-color);
}

.resource-link:hover i {
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .method-pros-cons {
        grid-template-columns: 1fr;
    }
    
    .result-display {
        grid-template-columns: 1fr;
    }
    
    .country-card {
        flex-direction: column;
        text-align: center;
    }
    
    .country-flag {
        margin: 0 auto;
    }
    
    .tip {
        flex-direction: column;
        text-align: center;
    }
    
    .tip-icon {
        margin: 0 auto;
    }
}