/* Service Pages Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #6A1B9A 0%, #26C6DA 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="crystal" patternUnits="userSpaceOnUse" width="20" height="20"><polygon points="10,2 18,8 10,14 2,8" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23crystal)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.stat-item img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.stat-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 0.8rem 1.2rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #6A1B9A 0%, #26C6DA 100%);
    color: white;
    padding: 40px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="crystal" patternUnits="userSpaceOnUse" width="20" height="20"><polygon points="10,2 18,8 10,14 2,8" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23crystal)"/></svg>') repeat;
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(106, 27, 154, 0.1);
    overflow: hidden;
}

.content-body {
    padding: 60px;
}

.content-body h2 {
    color: #6A1B9A;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 3px solid #26C6DA;
    padding-bottom: 0.5rem;
}

.content-body h3 {
    color: #6A1B9A;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.content-body p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.content-body ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-body li {
    color: #333;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.content-body strong {
    color: #6A1B9A;
    font-weight: 600;
}

.content-body a {
    color: #26C6DA;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.content-body a:hover {
    color: #6A1B9A;
    text-decoration: underline;
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
    border-left: 4px solid #26C6DA;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(38, 198, 218, 0.1);
}

.highlight-box h4 {
    color: #6A1B9A;
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight-box p {
    margin-bottom: 0;
}

/* Contact Info */
.contact-info {
    background: linear-gradient(135deg, #6A1B9A 0%, #26C6DA 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.contact-info h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.contact-info a {
    color: white;
    text-decoration: underline;
}

.contact-info a:hover {
    opacity: 0.8;
}

/* Thank You Page Specific Styles */
.thank-you-content {
    text-align: center;
    padding: 120px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon img {
    width: 80px;
    height: 80px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.thank-you-content h1 {
    color: #6A1B9A;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thank-you-message {
    margin-bottom: 3rem;
}

.thank-you-message .main-message {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.thank-you-message p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Response Info Section */
.response-info {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    border: 2px solid #e0e7ff;
    box-shadow: 0 10px 30px rgba(106, 27, 154, 0.1);
}

.response-info h2 {
    color: #6A1B9A;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(106, 27, 154, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6A1B9A 0%, #8E24AA 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(106, 27, 154, 0.3);
}

.step-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Additional Info Section */
.additional-info {
    background: linear-gradient(135deg, #fff8e1 0%, #f3e5f5 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    border: 2px solid #f0f4c3;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.1);
}

.additional-info h2 {
    color: #6A1B9A;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.additional-info > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.suggestions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.suggestion-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.suggestion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(106, 27, 154, 0.15);
    border-color: #6A1B9A;
    text-decoration: none;
}

.suggestion-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f4fd 0%, #f8f9ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.suggestion-card:hover .suggestion-icon {
    background: linear-gradient(135deg, #6A1B9A 0%, #8E24AA 100%);
}

.suggestion-card:hover .suggestion-icon img {
    filter: brightness(0) invert(1);
}

.suggestion-card h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.suggestion-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact Reminder Section */
.contact-reminder {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    border: 2px solid #bbdefb;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.1);
}

.contact-reminder h2 {
    color: #6A1B9A;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.contact-reminder > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-option {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(106, 27, 154, 0.15);
    border-color: #6A1B9A;
}

.contact-option img {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-option:hover img {
    transform: scale(1.1);
}

.contact-option h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-option p {
    color: #6A1B9A;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Back to Home Section */
.back-to-home {
    margin: 4rem 0 2rem;
    text-align: center;
}

.back-to-home .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: linear-gradient(135deg, #6A1B9A 0%, #8E24AA 100%);
    border: none;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(106, 27, 154, 0.3);
}

.back-to-home .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(106, 27, 154, 0.4);
    text-decoration: none;
    color: white;
}

.back-to-home p {
    color: #666;
    font-size: 1rem;
    margin-top: 1rem;
}

.next-steps {
    background: #f8f9ff;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 2px solid #e8f4fd;
}

/* Browser Instructions Styles */
.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.browser-card {
    background: #f8f9ff;
    border: 2px solid #e3f2fd;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.browser-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(106, 27, 154, 0.1);
    border-color: #6A1B9A;
}

.browser-header {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e3f2fd;
}

.browser-header h3 {
    color: #6A1B9A;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.instruction-list {
    margin: 0;
    padding-left: 1.2rem;
    color: #555;
}

.instruction-list li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.instruction-list li:last-child {
    margin-bottom: 0;
}

/* Warning Card Styles */


.warning-card .card-icon img {
  
}

.consequences-list {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.consequences-list li {
    margin-bottom: 0.8rem;
    color: #666;
    line-height: 1.5;
    position: relative;
}

.consequences-list li::marker {
    color: #ff9800;
}

/* Storage Card Styles */
.storage-card {
    border-left: 5px solid #4caf50;
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e8 100%);
}

.storage-card .card-icon {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
}

.storage-card .card-icon img {
    filter: brightness(0) invert(1);
}

.storage-types {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.storage-item {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.storage-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.15);
}

.storage-item strong {
    color: #2e7d32;
    font-weight: 600;
    font-size: 1rem;
}

.storage-item span {
    color: #666;
    font-size: 0.9rem;
    text-align: right;
}

/* Update Card Styles */
.update-card {
    border-left: 5px solid #2196f3;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

.update-card .card-icon {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

.update-card .card-icon img {
    filter: brightness(0) invert(1);
}

.update-notice {
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
    margin-top: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.update-notice p {
    margin: 0;
    color: #1565c0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.update-notice strong {
    color: #0d47a1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .browser-instructions {
        grid-template-columns: 1fr;
    }
    
    .storage-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .storage-item span {
        text-align: left;
    }
}


.next-steps h2 {
    color: #6A1B9A;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.next-steps li {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.1rem;
    color: #333;
}

.next-steps li:last-child {
    border-bottom: none;
}

.next-steps li::before {
    content: '✓';
    color: #26C6DA;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.explore-more {
    margin: 3rem 0;
}

.explore-more h3 {
    color: #6A1B9A;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.explore-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.explore-link {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 15px rgba(106, 27, 154, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.explore-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 27, 154, 0.2);
    border-color: #26C6DA;
    color: #333;
    text-decoration: none;
}

.explore-link h4 {
    color: #6A1B9A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.explore-link p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-option {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(106, 27, 154, 0.1);
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
}

.contact-option svg {
    margin-bottom: 1rem;
}

.contact-option h3 {
    color: #6A1B9A;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-option p {
    margin: 0;
    color: #666;
    font-size: 1.1rem;
}

.back-to-home {
    margin-top: 3rem;
    text-align: center;
}

.back-to-home p {
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}

/* Cookie Policy Specific */
.cookie-settings {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 2px solid #e8f4fd;
}

.cookie-settings h4 {
    color: #6A1B9A;
    margin-bottom: 1rem;
}

.cookie-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-toggle:last-child {
    border-bottom: none;
}

.cookie-toggle label {
    font-weight: 500;
    color: #333;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: #ccc;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch.active {
    background: #26C6DA;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch.active::before {
    transform: translateX(30px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .content-body {
        padding: 40px 20px;
    }
    
    .content-body h2 {
        font-size: 1.8rem;
    }
    
    /* Thank You Page Mobile Styles */
    .thank-you-content {
        padding: 5rem 1rem;
    }
    
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
    
    .response-info,
    .additional-info,
    .contact-reminder {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .response-info h2,
    .additional-info h2,
    .contact-reminder h2 {
        font-size: 1.8rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .suggestions {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step,
    .suggestion-card,
    .contact-option {
        padding: 1.5rem;
    }
    
    .back-to-home .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .next-steps {
        padding: 2rem 1.5rem;
    }
    
    .explore-links {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-body {
        padding: 30px 15px;
    }
    
    .thank-you-message h1 {
        font-size: 2rem;
    }
    
    .next-steps {
        padding: 1.5rem 1rem;
    }
    
    .explore-link,
    .contact-option {
        padding: 1.5rem;
    }
}

/* Styles for info cards and icons on technical pages */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
   
    border-radius: 12px;
    padding: 8px;
}

.card-icon .icon,
.card-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    
}

.card-content {
    flex: 1;
}

.card-content h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-purple);
    font-size: 1.5rem;
    font-weight: 600;
}

.card-content h3 {
    color: #e0e6ff;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.card-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-content ul {
    margin-bottom: 1rem;
}

.card-content li {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments for info cards */
@media (max-width: 768px) {
    .info-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .card-icon {
        align-self: flex-start;
    }
    
    .card-content h2 {
        font-size: 1.3rem;
    }
}