/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #1e5128 0%, #2d6a4f 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo img {
    height: 80px;
    border-radius: 8px;
}

.header-logo h1 {
    margin: 0;
    font-size: 1.8rem;
}

.header-logo p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

nav {
    margin-top: 1rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    margin-left: auto;
    margin-top: 1rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: inline-block;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 0.3rem;
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 180px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    color: #333;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    transition: background-color 0.2s;
    white-space: nowrap;
    margin: 0;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
    color: #1e5128;
    opacity: 1;
}

nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background-color: #40916c;
    background-image: 
        linear-gradient(135deg, rgba(64, 145, 108, 0.8) 0%, rgba(82, 183, 136, 0.8) 100%),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOTIwIDYwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ieE1pZFlNaWQgc2xpY2UiPgogIDwhLS0gR3JhZGllbnQgYmFja2dyb3VuZCAtLT4KICA8ZGVmcz4KICAgIDxsaW5lYXJHcmFkaWVudCBpZD0ic2t5R3JhZCIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdHlsZT0ic3RvcC1jb2xvcjojNDA5MTZjO3N0b3Atb3BhY2l0eTowLjk1IiAvPgogICAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiM1MmI3ODg7c3RvcC1vcGFjaXR5OjAuOTUiIC8+CiAgICA8L2xpbmVhckdyYWRpZW50PgogICAgPGxpbmVhckdyYWRpZW50IGlkPSJob3VzZUdyYWQiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMCUiIHkyPSIxMDAlIj4KICAgICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3R5bGU9InN0b3AtY29sb3I6I2ZmZmZmZjtzdG9wLW9wYWNpdHk6MC45IiAvPgogICAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiNmMGYwZjA7c3RvcC1vcGFjaXR5OjAuOSIgLz4KICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgPC9kZWZzPgogIAogIDwhLS0gQmFja2dyb3VuZCAtLT4KICA8cmVjdCB3aWR0aD0iMTkyMCIgaGVpZ2h0PSI2MDAiIGZpbGw9InVybCgjc2t5R3JhZCkiLz4KICAKICA8IS0tIEFic3RyYWN0IHBhdHRlcm4gLS0+CiAgPGcgb3BhY2l0eT0iMC4xIj4KICAgIDxjaXJjbGUgY3g9IjE3MDAiIGN5PSIxMDAiIHI9IjE1MCIgZmlsbD0id2hpdGUiLz4KICAgIDxjaXJjbGUgY3g9IjIwMCIgY3k9IjUwMCIgcj0iMTIwIiBmaWxsPSJ3aGl0ZSIvPgogICAgPGNpcmNsZSBjeD0iMTYwMCIgY3k9IjQ1MCIgcj0iODAiIGZpbGw9IndoaXRlIi8+CiAgPC9nPgogIAogIDwhLS0gU2lsaG91ZXR0ZSBob3VzZXMgb24gcmlnaHQgc2lkZSAtLT4KICA8ZyBvcGFjaXR5PSIwLjE1IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNDAwLCAyNTApIj4KICAgIDwhLS0gSG91c2UgMSAtLT4KICAgIDxwb2x5Z29uIHBvaW50cz0iMCwxNTAgODAsODAgMTYwLDE1MCAxNjAsMjgwIDAsMjgwIiBmaWxsPSJ3aGl0ZSIvPgogICAgPHJlY3QgeD0iMzAiIHk9IjE4MCIgd2lkdGg9IjQwIiBoZWlnaHQ9IjUwIiBmaWxsPSIjNDA5MTZjIi8+CiAgICA8cmVjdCB4PSI5MCIgeT0iMTgwIiB3aWR0aD0iNDAiIGhlaWdodD0iNTAiIGZpbGw9IiM0MDkxNmMiLz4KICAgIDxyZWN0IHg9IjU1IiB5PSIyMzAiIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgZmlsbD0iIzQwOTE2YyIvPgogICAgCiAgICA8IS0tIEhvdXNlIDIgLS0+CiAgICA8cG9seWdvbiBwb2ludHM9IjE4MCwxNzAgMjQwLDEyMCAzMDAsMTcwIDMwMCwyODAgMTgwLDI4MCIgZmlsbD0id2hpdGUiLz4KICAgIDxyZWN0IHg9IjIxMCIgeT0iMjAwIiB3aWR0aD0iMzAiIGhlaWdodD0iNDAiIGZpbGw9IiM0MDkxNmMiLz4KICAgIDxyZWN0IHg9IjI1MCIgeT0iMjAwIiB3aWR0aD0iMzAiIGhlaWdodD0iNDAiIGZpbGw9IiM0MDkxNmMiLz4KICAgIDxyZWN0IHg9IjIyNSIgeT0iMjQwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIGZpbGw9IiM0MDkxNmMiLz4KICAgIAogICAgPCEtLSBIb3VzZSAzIC0tPgogICAgPHBvbHlnb24gcG9pbnRzPSIzMjAsMTgwIDM3MCwxNDAgNDIwLDE4MCA0MjAsMjgwIDMyMCwyODAiIGZpbGw9IndoaXRlIi8+CiAgICA8cmVjdCB4PSIzNDUiIHk9IjIxMCIgd2lkdGg9IjI1IiBoZWlnaHQ9IjM1IiBmaWxsPSIjNDA5MTZjIi8+CiAgICA8cmVjdCB4PSIzNzUiIHk9IjIxMCIgd2lkdGg9IjI1IiBoZWlnaHQ9IjM1IiBmaWxsPSIjNDA5MTZjIi8+CiAgPC9nPgogIAogIDwhLS0gRW5lcmd5IGVmZmljaWVuY3kgaWNvbnMgb24gbGVmdCAtLT4KICA8ZyBvcGFjaXR5PSIwLjEyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMDAsIDE1MCkiPgogICAgPCEtLSBFbmVyZ3kgbGFiZWwgaWNvbiAtLT4KICAgIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMjAiIGhlaWdodD0iMTgwIiByeD0iMTAiIGZpbGw9IndoaXRlIi8+CiAgICA8cmVjdCB4PSIxNSIgeT0iMjAiIHdpZHRoPSI5MCIgaGVpZ2h0PSIzNSIgZmlsbD0iIzJkNmE0ZiIvPgogICAgPHJlY3QgeD0iMTUiIHk9IjY1IiB3aWR0aD0iOTAiIGhlaWdodD0iMzUiIGZpbGw9IiM0MDkxNmMiLz4KICAgIDxyZWN0IHg9IjE1IiB5PSIxMTAiIHdpZHRoPSI5MCIgaGVpZ2h0PSIzNSIgZmlsbD0iIzUyYjc4OCIvPgogICAgCiAgICA8IS0tIENoZWNrbWFyayBpY29uIC0tPgogICAgPGNpcmNsZSBjeD0iMjAwIiBjeT0iOTAiIHI9IjUwIiBmaWxsPSJ3aGl0ZSIvPgogICAgPHBvbHlsaW5lIHBvaW50cz0iMTgwLDkwIDE5NSwxMDUgMjIwLDc1IiBmaWxsPSJub25lIiBzdHJva2U9IiMyZDZhNGYiIHN0cm9rZS13aWR0aD0iOCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+CiAgPC9nPgogIAogIDwhLS0gRGVjb3JhdGl2ZSBsaW5lcyAtLT4KICA8ZyBvcGFjaXR5PSIwLjA4Ij4KICAgIDxsaW5lIHgxPSIwIiB5MT0iMTAwIiB4Mj0iNDAwIiB5Mj0iMTAwIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiLz4KICAgIDxsaW5lIHgxPSIwIiB5MT0iMTUwIiB4Mj0iMzUwIiB5Mj0iMTUwIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiLz4KICAgIDxsaW5lIHgxPSIxNTIwIiB5MT0iNDUwIiB4Mj0iMTkyMCIgeTI9IjQ1MCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIi8+CiAgICA8bGluZSB4MT0iMTU3MCIgeTE9IjUwMCIgeDI9IjE5MjAiIHkyPSI1MDAiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIvPgogIDwvZz4KICAKICA8IS0tIEJvdHRvbSBmYWRlIG92ZXJsYXkgLS0+CiAgPHJlY3QgeD0iMCIgeT0iNTAwIiB3aWR0aD0iMTkyMCIgaGVpZ2h0PSIxMDAiIGZpbGw9InVybCgjc2t5R3JhZCkiIG9wYWNpdHk9IjAuMyIvPgo8L3N2Zz4K');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

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

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-badge {
    display: block;
    margin-top: 1rem;
    grid-column: 2;
}

.hero h2 {
    font-size: 2.8rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.hero p {
    font-size: 1.3rem;
    margin: 0 0 2rem 0;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: #1e5128;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 5rem 2rem;
}

.section-white {
    background: white;
}

.section-gray {
    background: #f8f9fa;
}

.section-green {
    background: linear-gradient(135deg, #40916c 0%, #52b788 100%);
    color: white;
}

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

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

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e5128;
}

.section-green h2 {
    color: white;
}

h3 {
    color: #1e5128;
    font-size: 1.5rem;
}

.subtitle {
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.grid-2-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: start;
}

.grid-2-xlarge {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    background: #d8f3dc;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.service-header h3 {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.2;
}

.service-card h3 {
    margin: 0 0 1rem 0;
}

.service-card p {
    color: #666;
    margin: 0;
    line-height: 1.8;
}

/* Pricing grid wrapper */
.pricing-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.pricing-column {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Pricing Section */
.pricing-box {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.pricing-column > .pricing-box:only-child {
    height: 100%;
}

.pricing-box:last-child {
    margin-bottom: 0;
}

.pricing-box h3 {
    margin: 0 0 2rem 0;
    font-size: 1.8rem;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #ddd;
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    color: #333;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
}

.price-value {
    color: #1e5128;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
}

.pricing-note {
    text-align: center;
    color: #1e5128;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
}

.pricing-note-small {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pricing-box ul {
    color: #666;
    line-height: 2;
    padding-left: 1.5rem;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
}

/* Why Choose Us */
.feature-item {
    text-align: center;
}

.feature-icon {
    background: #d8f3dc;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.feature-item h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.feature-item p {
    color: #666;
    margin: 0;
}

/* Combi Deal */
.combi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.combi-text-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.combi-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.combi-documents {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.combi-doc-wrapper {
    flex-shrink: 0;
}

.combi-doc-single {
    width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: white;
}

.combi-plus {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    background: rgba(255,255,255,0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid white;
}

.combi-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.combi-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.combi-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: white;
    opacity: 1;
}

.combi-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.about-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Info Section */
.info-box {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.info-box h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.8rem;
}

.info-box h4 {
    color: #1e5128;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.info-section {
    margin-bottom: 2rem;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-box p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.info-box ul {
    color: #666;
    line-height: 1.8;
    padding-left: 1.5rem;
}

.info-highlight {
    color: #1e5128;
    font-weight: 600;
    margin-top: 1rem;
}

.info-box strong {
    font-weight: 600;
}

/* Process Section */
.process-step {
    text-align: center;
    padding: 2rem;
}

.process-number {
    background: #1e5128;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.process-step h3 {
    margin: 0 0 0.5rem 0;
}

.process-step p {
    color: #666;
    margin: 0;
}

/* Contact Section */
.contact-box {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 700px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-item {
    padding: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-emoji {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.contact-item h3 {
    margin: 0.5rem 0;
    font-size: 1.3rem;
    color: #1e5128;
}

.contact-item a {
    color: #1e5128;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #40916c;
    text-decoration: underline;
}

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

.service-card .contact-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #1e5128;
    margin: 1rem 0 0.5rem 0;
}

.service-card a {
    color: #1e5128;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.service-card a:hover {
    color: #40916c;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem;
    text-align: center;
}

footer p {
    margin: 0 0 0.5rem 0;
}

footer p:last-child {
    margin: 0;
}

.footer-credit {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.3rem !important;
}

.footer-credit a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-credit a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .pricing-grid-wrapper {
        grid-template-columns: 1fr;
    }
    
    .combi-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .combi-text-section {
        align-items: center;
    }
    
    .combi-documents {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .combi-plus {
        transform: rotate(0deg);
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #1e5128;
        flex-direction: column;
        gap: 0;
        padding: 5rem 2rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    }
    
    nav.active {
        right: 0;
    }
    
    nav a {
        margin: 0;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        text-align: left;
    }
    
    .dropdown {
        width: 100%;
        text-align: left;
    }
    
    .dropdown-toggle {
        width: 100%;
        text-align: left;
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0.5rem;
        background: rgba(255,255,255,0.1);
        display: none;
    }
    
    .dropdown.active .dropdown-menu,
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        color: white;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        border-bottom: none;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(255,255,255,0.2);
        color: white;
    }
}

/* Footer */
.site-footer {
    background: #f5f5f5;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 1px solid #e0e0e0;
}

.site-footer p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.site-footer a {
    color: #b71c1c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #d32f2f;
    text-decoration: underline;
}
