
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Source Sans Pro', serif;
            line-height: 1.7;
            color: #2c2c2c;
            background: #f9f6f0;
            min-height: 100vh;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Header - Editorial Style */
        .att-header {
            position: relative;
            background: #f9f6f0;
            border-bottom: 1px solid #d4c4a8;
            z-index: 100;
        }

        .att-header-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 32px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .att-logo {
            font-family: 'Crimson Text', serif;
            font-size: 28px;
            font-weight: 600;
            color: #2c2c2c;
            text-decoration: none;
            letter-spacing: -0.01em;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: #5a5a5a;
            font-weight: 400;
            font-size: 16px;
            transition: color 0.3s ease;
            letter-spacing: 0.01em;
            font-family: 'Source Sans Pro', sans-serif;
        }

        nav a:hover {
            color: #2c2c2c;
        }

        /* Dropdown Menu - Editorial */
        .att-nav-dropdown {
            position: relative;
        }

        .att-nav-dropdown > a::after {
            content: '▾';
            margin-left: 4px;
            font-size: 12px;
            color: #7a7a7a;
        }

        .att-dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #f9f6f0;
            border: 1px solid #d4c4a8;
            min-width: 180px;
            z-index: 1001;
            padding: 16px 0;
        }

        .att-nav-dropdown:hover .att-dropdown-content {
            display: block;
        }

        .att-dropdown-content a {
            display: block;
            padding: 8px 20px;
            color: #5a5a5a;
            text-decoration: none;
            font-size: 15px;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .att-dropdown-content a:hover {
            color: #2c2c2c;
            background: #ede7dc;
        }

        /* Hero Section - Editorial */
        .att-hero {
            position: relative;
            min-height: 60vh;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            padding: 100px 0;
            filter: grayscale(20%) contrast(95%);
        }

        .att-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(233, 213, 181, 0.45) 0%,
                rgba(198, 170, 133, 0.35) 50%,
                rgba(139, 115, 85, 0.25) 100%
            );
            z-index: 1;
        }

        .att-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(139, 115, 85, 0.08);
            z-index: 1;
        }

        .att-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px;
            text-align: left;
        }

        .att-hero h1 {
            font-size: 48px;
            font-weight: 600;
            margin-bottom: 24px;
            color: #2c2c2c;
            line-height: 1.15;
            letter-spacing: -0.01em;
            font-family: 'Crimson Text', serif;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        }

        .att-hero .att-subtitle {
            font-size: 20px;
            margin-bottom: 28px;
            font-weight: 400;
            color: #4a4a4a;
            letter-spacing: 0.01em;
            font-family: 'Source Sans Pro', sans-serif;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
        }

        .att-hero p {
            font-size: 17px;
            line-height: 1.8;
            color: #3a3a3a;
            font-weight: 400;
            max-width: 650px;
            font-family: 'Source Sans Pro', sans-serif;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
        }

        /* Content Container - Editorial */
        .att-content-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Feature Sections - Editorial Layout */
        .att-feature-section {
            padding: 120px 0;
            position: relative;
        }

        .att-feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .att-feature-text h3 {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 20px;
            color: #2c2c2c;
            letter-spacing: -0.005em;
            line-height: 1.3;
            font-family: 'Crimson Text', serif;
        }

        .att-feature-text p {
            font-size: 16px;
            line-height: 1.8;
            color: #5a5a5a;
            font-weight: 400;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .att-feature-image {
            position: relative;
        }

        .att-feature-image img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            filter: grayscale(10%) contrast(95%);
        }

        /* Split Feature - Editorial Layout */
        .att-split-feature {
            padding: 140px 0;
        }

        .att-split-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .att-split-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            filter: grayscale(10%) contrast(95%);
        }

        .att-split-text h2 {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 28px;
            color: #2c2c2c;
            letter-spacing: -0.01em;
            line-height: 1.2;
            font-family: 'Crimson Text', serif;
        }

        .att-split-text p {
            font-size: 16px;
            line-height: 1.8;
            color: #5a5a5a;
            max-width: 480px;
            font-family: 'Source Sans Pro', sans-serif;
        }

        /* Benefits Section - Editorial */
        .att-benefits-section {
            padding: 120px 0;
            text-align: center;
            background: #f5f2eb;
        }

        .att-benefits-section h2 {
            font-size: 36px;
            font-weight: 500;
            margin-bottom: 80px;
            color: #2c2c2c;
            letter-spacing: -0.01em;
            font-family: 'Crimson Text', serif;
        }

        .att-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .att-benefit-item {
            text-align: left;
            padding: 40px 30px;
            background: #ffffff;
            border: 1px solid #d4c4a8;
            position: relative;
        }

        .att-benefit-item h3 {
            font-size: 22px;
            font-weight: 500;
            margin-bottom: 16px;
            color: #2c2c2c;
            letter-spacing: -0.005em;
            font-family: 'Crimson Text', serif;
        }

        .att-benefit-item p {
            font-size: 16px;
            line-height: 1.8;
            color: #5a5a5a;
            font-weight: 400;
            font-family: 'Source Sans Pro', sans-serif;
        }

        /* Image Gallery - Editorial */
        .att-gallery-section {
            padding: 120px 0;
            background: #f9f6f0;
        }

        .att-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .att-gallery-grid img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            filter: grayscale(15%) contrast(92%);
        }

        /* Testimonials - Editorial */
        .att-testimonials-section {
            padding: 120px 0;
            text-align: center;
            background: #ffffff;
        }

        .att-testimonials-section h2 {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 80px;
            color: #2c2c2c;
            letter-spacing: -0.01em;
            font-family: 'Crimson Text', serif;
        }

        .att-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .att-testimonial-card {
            background: #f9f6f0;
            border: 1px solid #d4c4a8;
            padding: 40px 35px;
            text-align: left;
        }

        .att-testimonial-stars {
            display: flex;
            justify-content: flex-start;
            margin-bottom: 20px;
        }

        .att-testimonial-stars span {
            color: #8b7355;
            font-size: 14px;
        }

        .att-testimonial-quote {
            font-size: 16px;
            line-height: 1.8;
            color: #5a5a5a;
            margin-bottom: 20px;
            font-style: italic;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .att-testimonial-author {
            font-size: 15px;
            font-weight: 500;
            color: #2c2c2c;
            font-family: 'Crimson Text', serif;
        }

        /* Footer - Editorial */
        footer {
            background: #ede7dc;
            border-top: 1px solid #d4c4a8;
            padding: 80px 0 40px 0;
            position: relative;
        }

        .att-footer-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .att-footer-nav {
            display: flex;
            gap: 40px;
            margin-bottom: 32px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .att-footer-nav a {
            text-decoration: none;
            color: #5a5a5a;
            font-size: 15px;
            font-weight: 400;
            transition: color 0.3s ease;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .att-footer-nav a:hover {
            color: #2c2c2c;
        }

        .att-footer-legal {
            display: flex;
            gap: 32px;
            margin-bottom: 32px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .att-footer-legal a {
            text-decoration: none;
            color: #7a7a7a;
            font-size: 13px;
            transition: color 0.3s ease;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .att-footer-legal a:hover {
            color: #5a5a5a;
        }

        .att-footer-disclaimer {
            font-size: 14px;
            line-height: 1.8;
            color: #5a5a5a;
            margin-bottom: 32px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .att-copyright {
            font-size: 13px;
            color: #7a7a7a;
            text-align: center;
            font-family: 'Source Sans Pro', sans-serif;
        }

        /* Burger Menu - Editorial */
        .att-burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 12px;
            margin-left: auto;
        }

        .att-burger-line {
            width: 20px;
            height: 1px;
            background: #5a5a5a;
            margin: 3px 0;
            transition: 0.3s;
        }

        .att-mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: #f9f6f0;
            z-index: 1000;
            padding-top: 80px;
        }

        .att-mobile-menu.open {
            display: block;
        }

        .att-mobile-menu ul {
            list-style: none;
            padding: 0 24px;
        }

        .att-mobile-menu li {
            margin-bottom: 20px;
        }

        .att-mobile-menu a {
            display: block;
            padding: 16px 0;
            color: #5a5a5a;
            text-decoration: none;
            font-size: 17px;
            font-weight: 400;
            border-bottom: 1px solid #d4c4a8;
            transition: color 0.3s ease;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .att-mobile-menu a:hover {
            color: #2c2c2c;
        }

        .att-menu-close {
            position: absolute;
            top: 24px;
            right: 24px;
            font-size: 20px;
            cursor: pointer;
            color: #5a5a5a;
            transition: color 0.3s ease;
        }

        .att-menu-close:hover {
            color: #2c2c2c;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .att-hero h1 {
                font-size: 42px;
            }

            .att-hero .att-subtitle {
                font-size: 18px;
            }

            .att-benefits-section h2 {
                font-size: 32px;
            }

            .att-testimonials-section h2 {
                font-size: 30px;
            }
        }

        @media (max-width: 768px) {
            .att-header-content {
                padding: 20px 16px;
            }

            .att-logo {
                font-size: 24px;
            }

            nav {
                display: none;
            }

            .att-burger-menu {
                display: flex;
            }

            .att-hero {
                min-height: 55vh;
                padding: 70px 0;
            }

            .att-hero h1 {
                font-size: 36px;
            }

            .att-hero .att-subtitle {
                font-size: 17px;
            }

            .att-hero p {
                font-size: 16px;
            }

            .att-feature-section {
                padding: 80px 0;
            }

            .att-feature-grid,
            .att-split-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .att-feature-text h3 {
                font-size: 22px;
            }

            .att-benefits-section {
                padding: 80px 0;
            }

            .att-benefits-section h2 {
                font-size: 28px;
                margin-bottom: 60px;
            }

            .att-benefits-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .att-benefit-item {
                padding: 35px 25px;
            }

            .att-gallery-section {
                padding: 80px 0;
            }

            .att-gallery-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .att-gallery-grid img {
                height: 200px;
            }

            .att-testimonials-section {
                padding: 80px 0;
            }

            .att-testimonials-section h2 {
                font-size: 26px;
                margin-bottom: 60px;
            }

            .att-testimonials-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .att-footer-nav {
                flex-direction: column;
                gap: 20px;
            }

            .att-footer-legal {
                flex-direction: column;
                gap: 16px;
            }

            .att-footer-disclaimer {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .att-header-content {
                padding: 16px 12px;
            }

            .att-hero h1 {
                font-size: 32px;
            }

            .att-hero .att-subtitle {
                font-size: 16px;
            }

            .att-hero-content {
                padding: 0 12px;
            }

            .att-feature-section {
                padding: 60px 0;
            }

            .att-benefits-section {
                padding: 60px 0;
            }

            .att-testimonials-section {
                padding: 60px 0;
            }

            .att-gallery-section {
                padding: 60px 0;
            }
        }

        /* Custom scrollbar - Editorial */
        ::-webkit-scrollbar {
            width: 4px;
        }

        ::-webkit-scrollbar-track {
            background: #ede7dc;
        }

        ::-webkit-scrollbar-thumb {
            background: #d4c4a8;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #c4b499;
        }

        /* Contact Form - Editorial */
        .contact-form-section {
            padding: 120px 0;
            background: #f9f6f0;
        }

        .contact-form-section h1 {
            font-size: 36px;
            font-weight: 500;
            margin-bottom: 24px;
            color: #2c2c2c;
            text-align: center;
            font-family: 'Crimson Text', serif;
        }

        .contact-form-section h2 {
            font-size: 18px;
            line-height: 1.8;
            color: #5a5a5a;
            margin-bottom: 60px;
            text-align: center;
            font-family: 'Source Sans Pro', sans-serif;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

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

        .form-group label {
            display: block;
            font-size: 15px;
            font-weight: 500;
            color: #2c2c2c;
            margin-bottom: 8px;
            font-family: 'Source Sans Pro', sans-serif;
        }

        input[type="text"],
        input[type="email"],
        textarea {
            width: 100%;
            padding: 16px 20px;
            border: 1px solid #d4c4a8;
            border-radius: 0;
            background: #ffffff;
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 15px;
            color: #2c2c2c;
            box-sizing: border-box;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        textarea:focus {
            outline: none;
            border-color: #8b7355;
        }

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

        button[type="submit"] {
            background: #8b7355;
            color: #ffffff;
            border: none;
            padding: 18px 32px;
            border-radius: 0;
            font-weight: 500;
            cursor: pointer;
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 15px;
            letter-spacing: 0.01em;
            width: 100%;
            max-width: 200px;
            margin: 0 auto;
            display: block;
        }

        button[type="submit"]:hover {
            background: #7a6548;
        }

        .contact-info {
            margin-top: 60px;
            text-align: center;
        }

        .contact-info h3 {
            font-size: 22px;
            font-weight: 500;
            margin-bottom: 20px;
            color: #2c2c2c;
            font-family: 'Crimson Text', serif;
        }

        .contact-info p {
            font-size: 16px;
            line-height: 1.8;
            color: #5a5a5a;
            font-family: 'Source Sans Pro', sans-serif;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Disclaimer Section */
        .disclaimer-section {
            padding: 80px 0;
            background: #ede7dc;
        }

        .disclaimer-box {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px;
            background: #f9f6f0;
            border: 1px solid #d4c4a8;
        }

        .disclaimer-box p {
            font-size: 16px;
            line-height: 1.8;
            color: #5a5a5a;
            text-align: center;
            font-family: 'Source Sans Pro', sans-serif;
        }

        /* Responsible Content */
        .responsible-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .responsible-content h1 {
            font-size: 36px;
            font-weight: 500;
            margin-bottom: 24px;
            color: #2c2c2c;
            text-align: center;
            font-family: 'Crimson Text', serif;
        }

        .responsible-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #5a5a5a;
            margin-bottom: 32px;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .responsible-content h2 {
            font-size: 28px;
            font-weight: 500;
            margin: 48px 0 20px 0;
            color: #2c2c2c;
            font-family: 'Crimson Text', serif;
        }

        .responsible-content ul {
            margin-left: 24px;
            margin-bottom: 32px;
        }

        .responsible-content li {
            font-size: 16px;
            line-height: 1.8;
            color: #5a5a5a;
            margin-bottom: 8px;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .notice-box {
            background: #ede7dc;
            border: 1px solid #d4c4a8;
            padding: 32px;
            margin: 40px 0;
        }

        .notice-box strong {
            font-weight: 600;
            color: #2c2c2c;
            font-family: 'Crimson Text', serif;
        }

        .notice-box span {
            color: #5a5a5a;
            font-family: 'Source Sans Pro', sans-serif;
        }

        /* Privacy Content */
        .privacy-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .privacy-content h1 {
            font-size: 36px;
            font-weight: 500;
            margin-bottom: 24px;
            color: #2c2c2c;
            text-align: center;
            font-family: 'Crimson Text', serif;
        }

        .privacy-content h2 {
            font-size: 28px;
            font-weight: 500;
            margin: 48px 0 20px 0;
            color: #2c2c2c;
            font-family: 'Crimson Text', serif;
        }

        .privacy-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #5a5a5a;
            margin-bottom: 24px;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .privacy-content ul {
            margin-left: 24px;
            margin-bottom: 32px;
        }

        .privacy-content li {
            font-size: 16px;
            line-height: 1.8;
            color: #5a5a5a;
            margin-bottom: 8px;
            font-family: 'Source Sans Pro', sans-serif;
        }
