:root {
    --primary-color: #2c3e50; /* Dark blue/grey */
    --secondary-color: #3498db; /* Lighter blue */
    --text-color: #333333; /* Dark grey for text */
    --light-gray: #ecf0f1; /* Light grey for backgrounds/borders */
    --white: #ffffff;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    max-width: 300px;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    padding: 8px 0;
    display: inline-block;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #3498db;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><rect fill="rgba(255,255,255,0.05)" x="25" y="25" width="50" height="50" transform="rotate(45 50 50)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: white;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 30px auto 40px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    background-color: #2c3e50;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.btn:hover {
    background-color: #1a252f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn:hover::before {
    left: 100%;
}

/* Services section */
.services {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #2c3e50;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.8;
    color: #555;
    animation: fadeIn 1s ease-out;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #3498db;
    transition: height 0.3s ease;
    z-index: -1;
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card:hover::before {
    height: 100%;
}

.service-card h3 {
    margin: 20px 0;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 70%;
}

/* About section */
.about {
    padding: 80px 0;
    background-color: #f8f8f8;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.footer-brand p {
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-links-section {
    flex: 1;
    min-width: 200px;
}

.footer-links-section h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #3498db;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-menu a::before {
    content: '›';
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.footer-menu a:hover {
    color: white;
    padding-left: 20px;
}

.footer-menu a:hover::before {
    transform: translateX(5px);
}

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-contact h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #3498db;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact section */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background-color: #3498db;
    color: white;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background-color: white;
}

.contact-email-icon::before {
    content: "✉";
    font-size: 24px;
    color: #3498db;
}

.contact-phone-icon::before {
    content: "☏";
    font-size: 24px;
    color: #3498db;
}

.contact-location-icon::before {
    content: "⌖";
    font-size: 24px;
    color: #3498db;
}

.contact-card h3 {
    margin: 15px 0 10px;
    font-size: 1.2rem;
}

.contact-message {
    flex: 1;
    display: flex;
    align-items: center;
}

.contact-form-container {
    background-color: #2c3e50;
    color: white;
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-container h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-form-container p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-form-container .btn {
    background-color: #3498db;
    border: none;
    padding: 12px 30px;
    margin-top: 10px;
}

.contact-form-container .btn:hover {
    background-color: white;
    color: #3498db;
}

/* Testimonials section */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonial-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.8;
    animation: fadeIn 1.2s ease-out;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto 50px;
}

.testimonial-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeIn 1.4s ease-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 100px;
    color: rgba(52, 152, 219, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    line-height: 1.8;
    padding-top: 20px;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    padding-left: 2px;
    font-size: 1.1rem;
}

.testimonial-author::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.testimonial-card:hover .testimonial-author::after {
    width: 100%;
}

.testimonial-company {
    color: #7f8c8d;
    padding-left: 2px;
}

/* CTA section */
.cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><rect fill="rgba(255,255,255,0.05)" x="25" y="25" width="50" height="50" transform="rotate(45 50 50)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
    animation: backgroundMove 20s linear infinite;
}

.cta h2 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.cta h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: white;
}

/* Main content */
.main-content {
    padding: 80px 0;
    background-color: white;
}

.content-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.8;
    color: #555;
    animation: fadeIn 1s ease-out;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #3498db;
    transition: height 0.3s ease;
    z-index: -1;
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.feature-card:hover h3::after {
    width: 70%;
}

.feature-card p {
    margin-bottom: 20px;
}

.content-section {
    margin-bottom: 50px;
    animation: fadeIn 1.2s ease-out;
}

.content-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.content-section:hover h2::after {
    width: 100px;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
    transition: transform 0.2s ease;
}

.content-section li:hover {
    transform: translateX(5px);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
}

.scroll-top:hover {
    background-color: #2c3e50;
    transform: translateY(-5px);
}

.arrow-up {
    font-size: 24px;
    font-weight: bold;
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-brand, .footer-links-section, .footer-contact {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .about-highlights {
        flex-direction: column;
        gap: 20px;
    }
    
    .highlight-item {
        width: 100%;
    }
    
    .footer-logo {
        margin: 0 auto 20px;
        display: block;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.section-title {
    animation: fadeIn 1s ease-out;
}

.about-image {
    animation: fadeIn 1.2s ease-out;
}

.highlight-item {
    animation: fadeIn 1.4s ease-out;
}

.experience-badge {
    animation: pulse 3s infinite;
}

/* IT Assessment Styles */
.assessment-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.assessment-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.assessment-content {
    flex: 1;
}

.assessment-content h2 {
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.assessment-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #3498db;
}

.assessment-benefits {
    margin: 25px 0;
    list-style: none;
}

.assessment-benefits li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}

.assessment-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.assessment-note {
    font-style: italic;
    margin-bottom: 25px;
    color: #7f8c8d;
}

.assessment-btn {
    background-color: #3498db;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.assessment-btn:hover {
    background-color: #2980b9;
}

.assessment-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background-color: #3498db;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background-image: linear-gradient(135deg, #3498db, #2c3e50);
    overflow: hidden;
}

.placeholder-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(44, 62, 80, 0.3);
}

.assessment-label {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* Form Modal Styles */
.assessment-form-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    max-width: 600px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #7f8c8d;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #2c3e50;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3498db;
    outline: none;
}

.form-submit-btn {
    width: 100%;
    background-color: #3498db;
    padding: 15px;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .assessment-container {
        flex-direction: column;
    }
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-image {
    flex: 1;
    height: 350px;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('/images/doctor.png') center/cover;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background-color: #3498db;
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.highlight-item {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    width: 30%;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background-color: #3498db;
    color: white;
}

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.highlight-item:hover .highlight-number {
    color: white;
}

.highlight-text {
    font-size: 0.9rem;
}

/* Contact section */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background-color: #3498db;
    color: white;
}

/* Pricing section styles */
.pricing-section {
    padding: 80px 0;
    background-color: white;
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.8;
    color: #555;
    animation: fadeIn 1s ease-out;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #3498db;
    transition: height 0.3s ease;
    z-index: -1;
    opacity: 0.1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.pricing-card:hover::before {
    height: 100%;
}

.pricing-card.featured {
    border: 2px solid #3498db;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-plan-name {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.featured-tag {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: #3498db;
    color: white;
    padding: 5px 40px;
    font-size: 0.9rem;
    transform: rotate(45deg);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
    color: #2c3e50;
}

.price span {
    font-size: 1rem;
    font-weight: normal;
    color: #7f8c8d;
}

.intro-price {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.feature-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.feature-list li.excluded {
    color: #7f8c8d;
}

.feature-list li.excluded::before {
    content: '✘';
    color: #7f8c8d;
}

.pricing-card .btn {
    margin-top: auto;
    background-color: #3498db;
}

.pricing-card .btn:hover {
    background-color: #2980b9;
}

/* Add-ons section */
.addons-section {
    margin-top: 60px;
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.addons-section h2 {
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.addons-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #3498db;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.addon-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.addon-card:hover {
    transform: translateY(-5px);
}

.addon-card h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.addon-price {
    font-weight: bold;
    margin-bottom: 10px;
    color: #3498db;
}

/* Special offers section */
.offers-section {
    margin-top: 60px;
}

.offers-section h2 {
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.offers-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #3498db;
}

.offers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.offer-card {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 20px;
    border-radius: 8px;
    width: calc(33.333% - 14px);
    min-width: 250px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-card h3 {
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.offer-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: white;
}

/* FAQ section */
.faq-section {
    margin-top: 60px;
    margin-bottom: 40px;
}

.faq-section h2 {
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #3498db;
}

.faq-item {
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: bold;
    font-size: 1.1rem;
}

.faq-answer {
    color: #555;
    line-height: 1.6;
}

/* Responsive pricing styles */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .offer-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .offer-card {
        width: 100%;
    }
}