/* 
* Domain - Accounting Services Website
* Color Palette:
* - Main background: #f3f9fb (light turquoise)
* - Accents: #fe6d73 (coral) and #22223b (deep graphite)
* - Headings: #4a4e69
* - Section backgrounds: gradients from #edf6f9 to #ffffff
* - Buttons: #f72585 (bright pink) with white text
* - Hover effect: soft neon glow
*/

/* === Base Styles === */
:root {
    --color-background: #f3f9fb;
    --color-accent-coral: #fe6d73;
    --color-accent-graphite: #22223b;
    --color-headings: #4a4e69;
    --color-text: #2b2d42;
    --color-button: #f72585;
    --color-button-hover: #b5179e;
    --color-light: #ffffff;
    --color-gradient-start: #edf6f9;
    --color-gradient-end: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
    --glow: 0 0 10px rgba(247, 37, 133, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--color-accent-coral);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-button);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5 {
    color: var(--color-headings);
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h2 span {
    color: var(--color-accent-coral);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--color-gradient-start), var(--color-gradient-end));
}

section:nth-child(even) {
    background: linear-gradient(to top, var(--color-gradient-start), var(--color-gradient-end));
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--color-button);
    color: var(--color-light);
}

.btn-primary:hover {
    background-color: var(--color-button-hover);
    box-shadow: var(--glow);
    transform: translateY(-3px);
    color: var(--color-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-button);
    border: 2px solid var(--color-button);
}

.btn-secondary:hover {
    background-color: var(--color-button);
    color: var(--color-light);
    box-shadow: var(--glow);
    transform: translateY(-3px);
}

/* === Header === */
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-accent-graphite);
    letter-spacing: -1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    color: var(--color-headings);
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--color-button);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--color-button);
    color: var(--color-light) !important;
    padding: 8px 20px;
    border-radius: 30px;
}

.nav-cta:hover {
    background-color: var(--color-button-hover);
    box-shadow: var(--glow);
    transform: translateY(-3px);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-accent-graphite);
    transition: all 0.3s ease;
}

/* === Hero Section === */
.hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 3rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.hero h1 span {
    color: var(--color-accent-coral);
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transform: perspective(800px) rotateY(-8deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: perspective(800px) rotateY(0);
}

/* === About Section === */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background-color: var(--color-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-icon {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--color-button);
}

.about-card h3 {
    color: var(--color-accent-coral);
    margin-bottom: 1rem;
}

/* === Services Section === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--color-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3, .service-card p {
    padding: 0 1.5rem;
}

.service-card h3 {
    margin-top: 1.5rem;
    color: var(--color-headings);
}

.service-card .btn-secondary {
    margin: 1.5rem;
    display: block;
    text-align: center;
}

/* === Testimonials === */
.testimonials {
    background-color: var(--color-accent-graphite);
}

.testimonials h2 span {
    color: var(--color-accent-coral);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--color-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-style: italic;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(254, 109, 115, 0.2);
    z-index: -1;
}

.testimonial-author h4 {
    color: var(--color-accent-coral);
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    margin: 0;
}

/* === FAQ Section === */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: var(--color-light);
}

.faq-question {
    padding: 1.5rem;
    background-color: var(--color-button);
    color: var(--color-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 1.5rem;
    background-color: var(--color-light);
}

.faq-answer p {
    margin-bottom: 0;
}

/* === Workflow Section === */
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    counter-reset: workflow;
}

.workflow-step {
    text-align: center;
    position: relative;
    padding: 2rem;
    background-color: var(--color-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.workflow-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--color-button);
    color: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.workflow-step h3 {
    color: var(--color-accent-coral);
    margin-bottom: 1rem;
}

/* === Contact Form === */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background-color: var(--color-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.contact-info {
    padding: 2rem;
    background-color: var(--color-accent-graphite);
    color: var(--color-light);
}

.contact-info h3 {
    color: var(--color-accent-coral);
    margin-bottom: 1.5rem;
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: var(--color-accent-coral);
}

.contact-info a {
    color: var(--color-light);
}

.contact-info a:hover {
    color: var(--color-accent-coral);
}

.contact-form {
    padding: 2rem;
    box-shadow: inset 0 0 15px rgba(247, 37, 133, 0.1);
    animation: pulsate 3s infinite;
}

@keyframes pulsate {
    0% {
        box-shadow: inset 0 0 15px rgba(247, 37, 133, 0.1);
    }
    50% {
        box-shadow: inset 0 0 20px rgba(247, 37, 133, 0.3);
    }
    100% {
        box-shadow: inset 0 0 15px rgba(247, 37, 133, 0.1);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-headings);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-button);
    box-shadow: 0 0 0 3px rgba(247, 37, 133, 0.2);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

/* === Footer === */
.main-footer {
    background-color: var(--color-accent-graphite);
    color: var(--color-light);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-light);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--color-light);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--color-button);
    transform: translateY(-5px);
}

.footer-contact h3,
.footer-links h3,
.footer-legal h3 {
    color: var(--color-accent-coral);
    margin-bottom: 1.5rem;
}

.footer-contact ul,
.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-contact li,
.footer-links li,
.footer-legal li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-legal a {
    color: var(--color-light);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-accent-coral);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* === Cookie Consent === */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: var(--color-accent-graphite);
    color: var(--color-light);
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    transition: bottom 0.5s ease-in-out;
}

.cookie-consent.active {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cookie-content p {
    margin: 0;
    padding-right: 2rem;
}

.btn-cookie {
    background-color: var(--color-button);
    color: var(--color-light);
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cookie:hover {
    background-color: var(--color-button-hover);
    box-shadow: var(--glow);
}

/* === Icons === */
/* Placeholder for icon classes - would typically be implemented using an icon font or SVG */
.icon-experience::before,
.icon-clients::before,
.icon-certified::before,
.icon-phone::before,
.icon-map::before,
.icon-email::before,
.icon-linkedin::before,
.icon-facebook::before,
.icon-instagram::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-experience::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f72585'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
}

.icon-clients::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f72585'%3E%3Cpath d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
}

.icon-certified::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f72585'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z'/%3E%3C/svg%3E");
}

.icon-phone::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fe6d73'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.icon-map::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fe6d73'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.icon-email::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fe6d73'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.icon-linkedin::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z'/%3E%3C/svg%3E");
}

.icon-facebook::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96A10 10 0 0 0 22 12.06C22 6.53 17.5 2.04 12 2.04Z'/%3E%3C/svg%3E");
}

.icon-instagram::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7.8,2H16.2C19.4,2 22,4.6 22,7.8V16.2A5.8,5.8 0 0,1 16.2,22H7.8C4.6,22 2,19.4 2,16.2V7.8A5.8,5.8 0 0,1 7.8,2M7.6,4A3.6,3.6 0 0,0 4,7.6V16.4C4,18.39 5.61,20 7.6,20H16.4A3.6,3.6 0 0,0 20,16.4V7.6C20,5.61 18.39,4 16.4,4H7.6M17.25,5.5A1.25,1.25 0 0,1 18.5,6.75A1.25,1.25 0 0,1 17.25,8A1.25,1.25 0 0,1 16,6.75A1.25,1.25 0 0,1 17.25,5.5M12,7A5,5 0 0,1 17,12A5,5 0 0,1 12,17A5,5 0 0,1 7,12A5,5 0 0,1 12,7M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9Z'/%3E%3C/svg%3E");
}

/* === Policy Pages === */
.policy-page {
    padding: 10rem 0 5rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--color-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.policy-content h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.policy-content h1 span {
    color: var(--color-accent-coral);
}

.last-updated {
    text-align: right;
    font-style: italic;
    color: var(--color-text);
    opacity: 0.7;
    margin-bottom: 2rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: var(--color-headings);
    margin-bottom: 1rem;
    text-align: left;
}

.policy-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.back-btn {
    margin-top: 3rem;
    text-align: center;
}

/* === Responsive Design === */
@media screen and (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    /* Header & Navigation */
    .menu-icon {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.95);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .menu-toggle:checked ~ .main-nav {
        max-height: 300px;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .main-nav li {
        margin: 0;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 2rem;
    }
    
    /* Hero Section */
    .hero .container {
        flex-direction: column-reverse;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-top: 2rem;
    }

    /* Services Section - Mobile Optimization */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .service-card img {
        height: 180px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .service-card p {
        text-align: center;
        padding: 0 1rem;
        margin-bottom: 1rem;
    }
    
    .service-card .btn-secondary {
        margin: 1rem auto;
        width: 80%;
        max-width: 250px;
    }
    
    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    section {
        padding: 3rem 0;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        padding-right: 0;
        margin-bottom: 1rem;
    }

    /* Services Section - Smaller Screens */
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .service-card .btn-secondary {
        width: 90%;
        margin: 1rem auto;
        font-size: 0.9rem;
        padding: 10px 20px;
    }
} 