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

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

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db;
}

.ad-disclosure {
    background-color: #f39c12;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #ecf0f1;
}

.hero-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    position: relative;
    background-color: #95a5a6;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.services-preview {
    display: flex;
    min-height: 600px;
}

.section-left {
    flex: 1;
    background-color: #bdc3c7;
    position: relative;
}

.section-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.section-right p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #3498db;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #27ae60;
}

.creative-approach {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-content p {
    font-size: 1.1rem;
    color: #555;
}

.approach-visuals {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.visual-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.visual-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.visual-item p {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
}

.contact-split {
    display: flex;
    min-height: 700px;
}

.form-container {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container > p {
    margin-bottom: 2rem;
    color: #555;
}

.project-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

.info-container {
    flex: 1;
    padding: 4rem;
    background-color: #ecf0f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-block p {
    font-size: 1.1rem;
    color: #555;
}

.portfolio-highlight {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.portfolio-highlight h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.portfolio-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.portfolio-item {
    flex: 1;
    min-width: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #95a5a6;
}

.portfolio-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
}

.portfolio-overlay h3 {
    font-size: 1.3rem;
    color: #ffffff;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.detail-left,
.detail-right {
    flex: 1;
}

.detail-left {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.detail-right {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-left h2,
.detail-right h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.detail-left p,
.detail-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.pricing-info {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    font-size: 1rem;
    color: #7f8c8d;
}

.price-value {
    font-size: 2rem;
    font-weight: bold;
    color: #27ae60;
}

.detail-left img,
.detail-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section {
    background-color: #3498db;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.about-hero-split {
    display: flex;
    min-height: 600px;
}

.philosophy-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.philosophy-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.expertise-split {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
}

.expertise-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.expertise-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.expertise-list {
    list-style: none;
}

.expertise-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #2c3e50;
}

.expertise-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.expertise-right {
    flex: 1;
    background-color: #95a5a6;
}

.expertise-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-approach {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.team-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

.team-member p {
    color: #555;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
}

.values-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.value-item p {
    color: #555;
}

.values-visual {
    flex: 1;
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

.values-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.process-steps {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

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

.step p {
    color: #555;
}

.cta-about {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

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

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-intro {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-intro h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.2rem;
}

.contact-main-split {
    display: flex;
    min-height: 600px;
}

.contact-info-left {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
}

.contact-visual-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #95a5a6;
}

.contact-visual-right img {
    flex: 1;
    width: 100%;
    object-fit: cover;
}

.visual-caption {
    padding: 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.info-card {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail p {
    color: #555;
    line-height: 1.8;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.faq-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

.faq-item p {
    color: #555;
}

.next-steps {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

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

.steps-horizontal {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

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

.step-card p {
    color: #555;
}

.cta-contact {
    padding: 5rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

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

.cta-contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.thanks-hero {
    min-height: 600px;
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
}

.service-confirmation {
    background-color: #e8f8f5;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 4px solid #27ae60;
}

.next-steps-thanks {
    margin-bottom: 4rem;
    text-align: left;
}

.next-steps-thanks h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.steps-list {
    max-width: 700px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-num {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

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

.step-text p {
    color: #555;
}

.additional-info {
    margin-bottom: 3rem;
}

.additional-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.additional-info > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.link-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.link-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.link-card p {
    color: #555;
}

.back-home {
    margin-top: 3rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.last-updated {
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

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

.legal-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: #3498db;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-section a {
    color: #3498db;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .services-preview,
    .contact-split,
    .service-detail-split,
    .about-hero-split,
    .expertise-split,
    .values-split,
    .contact-main-split {
        flex-direction: column;
    }

    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .section-left,
    .section-right,
    .form-container,
    .info-container,
    .detail-left,
    .detail-right,
    .expertise-left,
    .expertise-right,
    .values-content,
    .values-visual,
    .contact-info-left,
    .contact-visual-right {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-left h1,
    .hero-content h1,
    .contact-intro h1,
    .thanks-content h1,
    .legal-content h1 {
        font-size: 2rem;
    }

    .section-right h2,
    .detail-left h2,
    .detail-right h2,
    .philosophy-content h2,
    .expertise-left h2,
    .values-content h2,
    .process-section h2,
    .faq-section h2,
    .next-steps h2,
    .legal-section h2 {
        font-size: 1.8rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}