* {
    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: linear-gradient(135deg, #f5f7fa 0%, #e8f0f7 25%, #f0f4f8 50%, #e3f2fd 75%, #f5f7fa 100%);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(52, 152, 219, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(52, 152, 219, 0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

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

header {
    background-color: #4a90e2;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#pensioen-regelen,
#nieuw-pensioenstelsel,
#particulieren-section,
#vroegpensioen-section,
#pensioenopbouw-section,
#pensioenaanvraag-section,
#werkgevers-section,
#pensioen-medewerkers,
#nieuw-pensioenstelsel-section,
#faq-section,
#faq-werknemers,
#faq-werkgevers,
#faq-origens {
    scroll-margin-top: 100px;
}

/* Sidebar Navigation */
.sidebar-nav {
    position: fixed;
    left: calc((100vw - 1200px) / 4 - 125px);
    top: 340px;
    width: 250px;
    z-index: 100;
    display: none;
    max-height: calc(100vh - 360px);
    overflow-y: auto;
}

@media (max-width: 1600px) {
    .sidebar-nav {
        left: 20px;
    }
}

.sidebar-content {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e3f2fd;
}

.sidebar-content h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #3498db;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu li.sidebar-header {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 0.5rem 0.5rem 0.5rem;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid #e3f2fd;
    cursor: default;
}

.sidebar-menu li.sidebar-header:first-child {
    margin-top: 0;
}

.sidebar-menu li.sidebar-submenu {
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.sidebar-menu li.sidebar-submenu a {
    color: #666;
    padding: 0.4rem 0.75rem;
}

.sidebar-menu li.sidebar-submenu a::before {
    content: '→ ';
    color: #3498db;
    margin-right: 0.25rem;
}

.sidebar-menu a {
    display: block;
    color: #2c3e50;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar-menu a:hover {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1976d2;
    transform: translateX(5px);
}

.sidebar-menu a:active {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

/* Show sidebar on larger screens with enough horizontal space */
@media (min-width: 1400px) {
    .sidebar-nav {
        display: block;
    }
}

/* Mobile sidebar toggle button */
.sidebar-toggle {
    position: fixed;
    left: calc((100vw - 1200px) / 4 - 25px);
    top: 270px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
    z-index: 101;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

@media (max-width: 1600px) {
    .sidebar-toggle {
        left: 20px;
    }
}

.sidebar-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5);
}

/* Show toggle button on medium screens */
@media (min-width: 1024px) and (max-width: 1399px) {
    .sidebar-toggle {
        display: flex;
        left: 20px;
    }
    
    .sidebar-nav {
        left: -270px;
        transition: left 0.3s ease;
    }
    
    .sidebar-nav.active {
        display: block;
        left: 20px;
    }
}

/* Adjust sidebar for medium-large screens */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

/* Ensure content doesn't overlap with sidebar on large screens */
@media (min-width: 1400px) {
    .service-section .container,
    main .container {
        margin-left: auto;
        margin-right: auto;
    }
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 1.8rem;
    color: #3498db;
}

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

nav ul li {
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

nav > ul > li:last-child > a {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

nav > ul > li:last-child > a:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #34495e;
    min-width: 200px;
    padding: 0.5rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

nav ul li:hover .dropdown {
    display: block;
}

.dropdown li {
    padding: 0;
}

.dropdown li a {
    padding: 0.5rem 1rem;
}

.hero {
    background: url('Pictures/Banner.jpg') center center/cover no-repeat;
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.cta-button:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

.service-section {
    padding: 3rem 0;
    position: relative;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.6) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.service-section .container {
    position: relative;
    z-index: 1;
}

.section-headers-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.section-headers-row .section-header {
    text-align: left;
    margin-bottom: 0;
    padding: 0;
    flex: 1;
}

.section-headers-row .scroll-to-employers {
    margin: 0;
    flex-shrink: 0;
}

.section-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #667eea);
    border-radius: 2px;
}

.section-headers-row .section-header h2::after {
    left: 0;
    transform: none;
}

.section-header p {
    color: #7f8c8d;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.scroll-to-employers {
    text-align: center;
    margin: 4rem 0 3rem 0;
}

.scroll-button {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.scroll-button:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    transform: translateY(-3px);
}

.scroll-button .arrow-down {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}

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

.service-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-item:hover .service-image img {
    transform: scale(1.02);
}

.service-content {
    flex: 1;
}

.service-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #3498db;
    border-radius: 2px;
}

.service-content h3 {
    color: #3498db;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.service-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.read-more {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3);
}

.read-more:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.4);
    transform: translateY(-2px);
}

.content-section {
    padding: 3rem 0;
}

.intro-section {
    background: url('Pictures/Banner.jpg') center center/cover no-repeat;
    padding: 4rem 0;
    margin-bottom: 2rem;
    position: relative;
    color: white;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.intro-section .container {
    position: relative;
    z-index: 2;
}

.intro-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-button {
    background: white;
    color: #3498db;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    border: 2px solid white;
}

.contact-button:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
}

.intro-section h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.points-section {
    margin: 3rem 0;
}

.points-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.points-section ul {
    list-style: none;
}

.points-section ul li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.points-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.3rem;
}

.additional-text {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.additional-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.what-we-offer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border-left: 5px solid #3498db;
}

.what-we-offer h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.what-we-offer ul {
    list-style: none;
    padding: 0;
}

.what-we-offer ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
}

.what-we-offer ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.3rem;
}

.process-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    border-radius: 15px;
    border-left: 5px solid #3498db;
}

.process-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

.process-step h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.process-arrow {
    font-size: 2rem;
    color: #3498db;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-section {
    margin: 4rem 0;
}

.faq-section h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.faq-category-title {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #3498db;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    font-size: 1.5rem;
    color: #3498db;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.faq-answer a {
    color: #3498db;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.price-section {
    padding: 3rem 0;
}

.price-item {
    background-color: #f8f9fa;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    border-left: 5px solid #3498db;
}

.price-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-item .price {
    color: #3498db;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.price-item ul {
    list-style: none;
}

.price-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.price-item ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.contact-section {
    padding: 3rem 0;
}

.contact-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-input,
.form-textarea,
select.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

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

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
}

.radio-label input[type="radio"] {
    margin-right: 0.5rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-label span {
    color: #2c3e50;
}

.success-message {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    grid-column: 1 / -1;
}

.success-message h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1.2rem;
}

.contact-info-sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
}

.contact-info-sidebar h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info-sidebar .contact-details {
    margin-bottom: 1.5rem;
}

.contact-info-sidebar .contact-details p {
    margin-bottom: 0.75rem;
}

.contact-info-sidebar .contact-note {
    padding-top: 1rem;
    border-top: 2px solid #e0e0e0;
}

@media (max-width: 768px) {
    .contact-section .container {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
}

.contact-info {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.contact-info h1 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-info img {
    max-width: 400px;
    width: 100%;
    margin: 2rem auto;
    display: block;
    border-radius: 10px;
}

.contact-details {
    margin: 2rem 0;
}

.contact-details p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.contact-details a {
    color: #3498db;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-note {
    background-color: #e8f4f8;
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.contact-note p {
    margin: 0.5rem 0;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

footer a {
    color: #3498db;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .service-section {
        padding: 2rem 0;
    }

    .section-header {
        padding: 1rem 0;
    }

    .additional-text,
    .what-we-offer,
    .process-section {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }

    .faq-section {
        padding: 2rem 0;
    }
}

@media (min-width: 481px) and (max-width: 1024px) {
    .service-item {
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 30px;
    }

    .process-steps {
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 45%;
        min-width: 250px;
    }
}

@media (max-width: 1023px) {
    .sidebar-nav {
        display: none !important;
    }
    
    .sidebar-toggle {
        display: none !important;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: row;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #4a90e2 0%, #357abd 100%);
        padding: 5rem 0 2rem 0;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.2);
        overflow-y: auto;
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        text-align: left;
        padding: 0 1rem;
    }

    nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav ul li a {
        padding: 1rem;
        display: block;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .service-item,
    .service-item.reverse {
        flex-direction: column;
    }

    .hero h2 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .dropdown {
        position: static;
        display: none;
        background-color: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        padding: 0;
    }

    nav ul li:hover .dropdown,
    nav ul li:focus-within .dropdown {
        display: block;
    }

    .dropdown li {
        border-bottom: none;
    }

    .dropdown li a {
        padding-left: 2rem;
        font-size: 0.95rem;
    }

    .intro-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .section-headers-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .section-headers-row .section-header {
        text-align: center;
        width: 100%;
    }

    .section-headers-row .section-header h2 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-headers-row .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .service-item {
        padding: 1.5rem;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .scroll-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .read-more {
        padding: 0.6rem 1.3rem;
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .intro-section h1 {
        font-size: 1.8rem;
    }

    .intro-section p {
        font-size: 1rem;
    }

    .faq-section h2 {
        font-size: 1.8rem;
    }

    .faq-category-title {
        font-size: 1.4rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .process-section h2 {
        font-size: 1.8rem;
    }

    .process-step {
        min-width: 100%;
    }

    .what-we-offer,
    .process-section {
        padding: 2rem 1.5rem;
    }

    .what-we-offer h2 {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 15px;
    }

    .logo img {
        height: 40px;
    }

    .contact-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }

    .service-image img {
        max-height: 300px;
        object-fit: cover;
    }

    footer {
        padding: 1.5rem 0;
    }

    footer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .service-content h2 {
        font-size: 1.3rem;
    }

    .scroll-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .intro-section h1 {
        font-size: 1.5rem;
    }

    .faq-section h2 {
        font-size: 1.5rem;
    }

    .faq-category-title {
        font-size: 1.2rem;
    }

    .process-section h2 {
        font-size: 1.5rem;
    }

    .what-we-offer h2 {
        font-size: 1.4rem;
    }

    .logo img {
        height: 35px;
    }

    nav {
        width: 100%;
        right: -100%;
    }

    nav.active {
        right: 0;
    }
}
